home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / qlib205.zip / QLIB.ZIP / BIN / QMAKE.BAT < prev    next >
DOS Batch File  |  1997-05-10  |  364b  |  23 lines

  1. @echo off
  2. if "%1"=="" goto usage
  3. if exist %1.mak goto doit
  4. if exist %1 goto doit2
  5. goto usage
  6.  
  7. :doit
  8. nmake /F %1.mak %2 %3 %4 %5 %6 %7 %8 %9
  9. goto end
  10.  
  11. :doit2
  12. nmake /F %1 %2 %3 %4 %5 %6 %7 %8 %9
  13. goto end
  14.  
  15. :usage
  16. echo QMAKE make_file[.mak] [...]
  17. echo   make_file = Make File
  18. echo   ... = Options to give to NMAKE (/a = force build)
  19. echo.
  20.  
  21. :end
  22.  
  23.